home *** CD-ROM | disk | FTP | other *** search
- /*
- * DO NOT EDIT. THIS FILE IS GENERATED FROM nsIAccessibleValue.idl
- */
-
- #ifndef __gen_nsIAccessibleValue_h__
- #define __gen_nsIAccessibleValue_h__
-
-
- #ifndef __gen_nsISupports_h__
- #include "nsISupports.h"
- #endif
-
- /* For IDL files that don't want to include root IDL files. */
- #ifndef NS_NO_VTABLE
- #define NS_NO_VTABLE
- #endif
-
- /* starting interface: nsIAccessibleValue */
- #define NS_IACCESSIBLEVALUE_IID_STR "f4abbc2f-0f28-47dc-a9e9-f7a1719ab2be"
-
- #define NS_IACCESSIBLEVALUE_IID \
- {0xf4abbc2f, 0x0f28, 0x47dc, \
- { 0xa9, 0xe9, 0xf7, 0xa1, 0x71, 0x9a, 0xb2, 0xbe }}
-
- class NS_NO_VTABLE nsIAccessibleValue : public nsISupports {
- public:
-
- NS_DEFINE_STATIC_IID_ACCESSOR(NS_IACCESSIBLEVALUE_IID)
-
- /* readonly attribute double maximumValue; */
- NS_IMETHOD GetMaximumValue(double *aMaximumValue) = 0;
-
- /* readonly attribute double minimumValue; */
- NS_IMETHOD GetMinimumValue(double *aMinimumValue) = 0;
-
- /* readonly attribute double currentValue; */
- NS_IMETHOD GetCurrentValue(double *aCurrentValue) = 0;
-
- /**
- * We want to be able to return a success condition of the value
- * getting set. ie if the value is not within the interval of
- * minimumValue-maximumValue
- */
- /* boolean setCurrentValue (in double value); */
- NS_IMETHOD SetCurrentValue(double value, PRBool *_retval) = 0;
-
- };
-
- /* Use this macro when declaring classes that implement this interface. */
- #define NS_DECL_NSIACCESSIBLEVALUE \
- NS_IMETHOD GetMaximumValue(double *aMaximumValue); \
- NS_IMETHOD GetMinimumValue(double *aMinimumValue); \
- NS_IMETHOD GetCurrentValue(double *aCurrentValue); \
- NS_IMETHOD SetCurrentValue(double value, PRBool *_retval);
-
- /* Use this macro to declare functions that forward the behavior of this interface to another object. */
- #define NS_FORWARD_NSIACCESSIBLEVALUE(_to) \
- NS_IMETHOD GetMaximumValue(double *aMaximumValue) { return _to GetMaximumValue(aMaximumValue); } \
- NS_IMETHOD GetMinimumValue(double *aMinimumValue) { return _to GetMinimumValue(aMinimumValue); } \
- NS_IMETHOD GetCurrentValue(double *aCurrentValue) { return _to GetCurrentValue(aCurrentValue); } \
- NS_IMETHOD SetCurrentValue(double value, PRBool *_retval) { return _to SetCurrentValue(value, _retval); }
-
- /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
- #define NS_FORWARD_SAFE_NSIACCESSIBLEVALUE(_to) \
- NS_IMETHOD GetMaximumValue(double *aMaximumValue) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMaximumValue(aMaximumValue); } \
- NS_IMETHOD GetMinimumValue(double *aMinimumValue) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMinimumValue(aMinimumValue); } \
- NS_IMETHOD GetCurrentValue(double *aCurrentValue) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCurrentValue(aCurrentValue); } \
- NS_IMETHOD SetCurrentValue(double value, PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetCurrentValue(value, _retval); }
-
- #if 0
- /* Use the code below as a template for the implementation class for this interface. */
-
- /* Header file */
- class nsAccessibleValue : public nsIAccessibleValue
- {
- public:
- NS_DECL_ISUPPORTS
- NS_DECL_NSIACCESSIBLEVALUE
-
- nsAccessibleValue();
-
- private:
- ~nsAccessibleValue();
-
- protected:
- /* additional members */
- };
-
- /* Implementation file */
- NS_IMPL_ISUPPORTS1(nsAccessibleValue, nsIAccessibleValue)
-
- nsAccessibleValue::nsAccessibleValue()
- {
- /* member initializers and constructor code */
- }
-
- nsAccessibleValue::~nsAccessibleValue()
- {
- /* destructor code */
- }
-
- /* readonly attribute double maximumValue; */
- NS_IMETHODIMP nsAccessibleValue::GetMaximumValue(double *aMaximumValue)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* readonly attribute double minimumValue; */
- NS_IMETHODIMP nsAccessibleValue::GetMinimumValue(double *aMinimumValue)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* readonly attribute double currentValue; */
- NS_IMETHODIMP nsAccessibleValue::GetCurrentValue(double *aCurrentValue)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* boolean setCurrentValue (in double value); */
- NS_IMETHODIMP nsAccessibleValue::SetCurrentValue(double value, PRBool *_retval)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* End of implementation class template. */
- #endif
-
-
- #endif /* __gen_nsIAccessibleValue_h__ */
-